-- card: 5907 from stack: in -- bmap block id: 0 -- flags: 0000 -- background id: 2764 -- name: -- part contents for background part 17 ----- text ----- Spaces -- part contents for background part 18 ----- text ----- Mike Gleason Jr. -- part contents for background part 19 ----- text ----- XFCN -- part contents for background part 20 ----- text ----- spaces("string", maxLength [, "side"] [, "spaceChar"]) -- part contents for background part 21 ----- text ----- This handy function will make a string of n characters to a length that you specify. This is nice if you are trying to align columns by using a monospace font. You have to provide the string and the length you want the string. Optional parameters are side and the space character: side: Which side should I add the spaces to? The default is "Right", and that would left justify everything by adding spaces on the right side. If you want right justification, specify "Left". spaceChar: You don't have to use spaces. If you wanted to, you could add on periods, or whatever you want. The default is space. -- part contents for background part 23 ----- text ----- put spaces("23.35",8,"Left"," ") into msg --> 23.35 put spaces("Mike Gleason",maxFieldWidth) into line x of card field 88 put spaces("Chapter 1",20,"",".") & "42" into msg -->Chapter 1...........42